home *** CD-ROM | disk | FTP | other *** search
- global gqtvrinstance, qtvrpath, roomnumber, light, plan, objectpict, codelist, aniflag, nodepict, nodeplan, compassline1, compassline2, sideboard, roomname, vrpict, returnlist, objnamesprite, objmarker, audioguidesprite
-
- on prepareMovie
- qtvrenter(xtra("QTVRXtra"))
- set gqtvrinstance to new(xtra("QTVRXtra"))
- set qtvrpath to "..\Qtvr\"
- set light to 3
- set plan to 10
- set nodeplan to 11
- set vrpict to 12
- set objnamesprite to 105
- set objmarker to 106
- set compassline1 to 95
- set compassline2 to 96
- set nodepict to 109
- set objectpict to 110
- set sideboard to 97
- set roomname to 6
- set audioguidesprite to 98
- set returnlist to [:]
- set returnlist to value(field "Panorama Location")
- if getProp(returnlist, #flag) = 1 then
- set roomnumber to getProp(returnlist, #roomnumber)
- showcast("R" & roomnumber)
- set the visible of sprite vrpict to 0
- end if
- set the visible of sprite light to 0
- set the visible of sprite objmarker to 0
- set aniflag to 1
- set the volume of sound 1 to 120
- end
-
- on startMovie
- global projectlist
- if soundBusy(1) then
- sound stop 1
- end if
- playthesound(1, "..\Audio\Music1.wav")
- puppetSprite(2, 1)
- set projectlist to [0, 109, 111, 203, 205, 207, 211, 305]
- end
-
- on stopMovie
- if the last char in string(roomnumber) = "0" then
- put "[#RoomNumber:" && roomnumber & ", #NodeID: 0, #Flag: 0]" into field "Panorama Location"
- else
- set nodeid to qtvrgetnodeid(gqtvrinstance)
- put qtvrgetpanangle(gqtvrinstance) into field "PanAngle"
- put qtvrgettiltangle(gqtvrinstance) into field "TiltAngle"
- put qtvrgetfov(gqtvrinstance) into field "FOV"
- put qtvrgetquality(gqtvrinstance) into field "Quality"
- put "[#RoomNumber:" && roomnumber & ", #NodeID:" && qtvrgetnodeid(gqtvrinstance) & ", #Flag: 1]" into field "Panorama Location"
- end if
- closemovie()
- set gqtvrinstance to 0
- qtvrexit(xtra("QTVRXtra"))
- gobackpath()
- end
-
- on closemovie
- if soundBusy(2) then
- sound close 2
- puppetSprite(audioguidesprite, 0)
- end if
- if isqtvrmovie(gqtvrinstance) then
- qtvrclose(gqtvrinstance)
- end if
- end
-
- on createcodelist whichroom
- if the number of member ("CodeList" && whichroom) > 0 then
- set filelist to "CodeList" && whichroom
- set linecounter to the number of lines in field filelist
- set codelist to [:]
- repeat with i = 1 to linecounter
- setaProp(codelist, item 1 of line i of field filelist, item 2 of line i of field filelist)
- end repeat
- end if
- end
-
- on showcast castlibname
- set the fileName of castLib "Room" to castlibname
- end
-
- on openqtvr visibleonoff
- set qtvrRect to recttostr(the rect of sprite 120)
- set qtvrFile to the pathName & qtvrpath & "P" & roomnumber & "0000.mov"
- qtvropen(gqtvrinstance, qtvrFile, qtvrRect, visibleonoff)
- if qtvrgetqtvrtype(gqtvrinstance) = "QTVRPanorama" then
- InitPanoCallbacks()
- end if
- end
-
- on recttostr myrect
- set mystring to string(myrect)
- delete char 1 to 5 of mystring
- delete char the length of mystring of mystring
- return mystring
- end
-
- on toobjectmovie newfile
- put newfile into field "Current Object"
- go(1, "Object")
- end
-
- on idle
- soundwait(1, "..\Audio\Music1.wav")
- end
-